6b1ba5fcd5b5848989103ed70925db4ed3539f11,library/src/main/java/com/mikepenz/aboutlibraries/ui/LibsActivity.java,LibsActivity,onCreate,#Bundle#,24
Before Change
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_opensource);
String title = "";
if (bundle != null && bundle.containsKey(Libs.BUNDLE_TITLE)) {
title = bundle.getString(Libs.BUNDLE_TITLE);
}
LibsSupportFragment fragment = new LibsSupportFragment();
fragment.setArguments(bundle);
After Change
setContentView(R.layout.activity_opensource);
String title = "";
if (bundle != null) {
title = bundle.getString(Libs.BUNDLE_TITLE, "");
}
LibsSupportFragment fragment = new LibsSupportFragment();
fragment.setArguments(bundle);